Expand description
This crate contians three macros used to simulate eager macro expansion:
eager!
: Eagerly expands any macro in its body.eager_macro_rules!
: Used to declare macro that can be eagerly expanded witheager!
.lazy!
: Used ineager!
to revert to lazy macro expansion.
See the each macro’s documentation for details.
Macros§
- Emulates eager expansion of macros.
- Declares eager!-enabled macros.